home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 601 b | 31 lines |
- #!smake
-
- include /usr/include/make/commondefs
-
- C++FILES = Interface.c++ WorldInfo.c++ \
- GeneralizedCylinder.c++ \
- NoodleTextureGizmo.c++ \
- NoodleSurfaceGizmo.c++ \
- NoodleSlider.c++ \
- NurbMaker.c++ \
- Triangulator.c++ profile.c++ \
- LineManip.c++ LineManipHilight.c++ \
- noodle.c++
-
- #OPTIMIZER=-g
-
- # Libraries to link with:
- LLDLIBS = -lInventorXt -lm
-
- LC++DEFS = -DDEBUG
-
- default: noodle GeneralizedCylinder.so
-
- include $(COMMONRULES)
-
- noodle: $(OBJECTS)
- $(C++F) -o $@ $(OBJECTS) $(LDFLAGS)
-
- GeneralizedCylinder.so: ${OBJECTS}
- ld -elf -shared ${OBJECTS} -o $@
-